go/ast.SendStmt.Chan (field)

7 uses

	go/ast (current package)
		ast.go#L651: 		Chan  Expr
		ast.go#L782: func (s *SendStmt) Pos() token.Pos       { return s.Chan.Pos() }
		walk.go#L186: 		Walk(v, n.Chan)

	go/parser
		parser.go#L1971: 		return &ast.SendStmt{Chan: x[0], Arrow: arrow, Value: y}, false
		parser.go#L2290: 			comm = &ast.SendStmt{Chan: lhs[0], Arrow: arrow, Value: rhs}

	go/printer
		nodes.go#L1386: 		p.expr0(s.Chan, depth)

	go/types
		stmt.go#L464: 		check.expr(nil, &ch, s.Chan)